Print a random sample of words from the system dictionary¶
Print a random sample of words from the system dictionary.
Expected output:
cellophane’s
matter’s
Whiteley’s
airdrop’s
sulkiest
whisper’s
downturns
import random
with open('/usr/share/dict/words', 'rt') as fh:
words = fh.readlines()
words = [w.rstrip() for w in words]
for w in random.sample(words, 7):
print(w)
Output:
philatelist's
thieve
sparrows
Loretta's
hostiles
naughty
afflicts